home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / diverses / tctnt / prnflip.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-27  |  442 b   |  18 lines

  1. /* PRNFLIP.C: Program to Swap LPT1: and LPT2: Printer Devices
  2. */
  3.  
  4. #include <dos.h>        // for MK_FP()
  5.  
  6. //*******************************************************************
  7. int main(void)
  8. {
  9.     unsigned far *LPT1_Addr = (unsigned far*) MK_FP(0x40, 0x08);
  10.     unsigned far *LPT2_Addr = (unsigned far*) MK_FP(0x40, 0x0A);
  11.     unsigned temp;
  12.  
  13.     temp  = *LPT1_Addr;
  14.     *LPT1_Addr = *LPT2_Addr;
  15.     *LPT2_Addr = temp;
  16.     return 0;
  17. } // end of main()
  18.